home *** CD-ROM | disk | FTP | other *** search
/ GEN4 #76 / GEN4 CD 76.iso / mac / Wrath of the Gods Demo / Shared.Dir / 01422_setScreen.ls < prev    next >
Encoding:
Text File  |  1994-09-20  |  433 b   |  19 lines

  1. on mouseUp
  2.   if withinRect(254, 412, 260, 296, getMouseLoc()) then
  3.     killScreenOver()
  4.   end if
  5. end
  6.  
  7. on withinRect left, right, top, bottom, mouseLoc
  8.   if (left <= item 1 of mouseLoc) and (right >= item 1 of mouseLoc) and (top <= item 2 of mouseLoc) and (bottom >= item 2 of mouseLoc) then
  9.     return 1
  10.   end if
  11.   return 0
  12. end
  13.  
  14. on getMouseLoc
  15.   set mouseLoc to the mouseH
  16.   put "," & the mouseV after mouseLoc
  17.   return mouseLoc
  18. end
  19.